home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / futils / futils~1 / man / manpages.zoo / install.1 < prev    next >
Encoding:
Text File  |  1991-11-11  |  2.2 KB  |  67 lines

  1.  
  2.  
  3.  
  4. INSTALL(1L)                                           INSTALL(1L)
  5.  
  6.  
  7.  
  8. NAME
  9.      install - copy files and set their attributes
  10.  
  11. SYNOPSIS
  12.      install [options] [-s] [+strip] source dest
  13.      install [options] [-s] [+strip] source... directory
  14.      install [options] [-d,+directory] directory
  15.      Options:
  16.      [-c] [-g group] [-m mode] [-o owner] [+group=group]
  17.      [+mode=mode] [+owner=owner]
  18.  
  19. DESCRIPTION
  20.      This manual page documents the GNU version of install.
  21.      install copies files and sets their permission modes and, if
  22.      possible, their owner and group.  Used similarly to cp; typ-
  23.      ically used in Makefiles to copy programs into their desti-
  24.      nation directories.  It can also be used to create the des-
  25.      tination directories and any leading directories, and to set
  26.      the final directory's modes.  It refuses to copy files onto
  27.      themselves.
  28.  
  29.      OPTIONS
  30.  
  31.      -_✓c   Ignored; for compatibility with old Unix versions of
  32.           install.
  33.  
  34.      -_✓d, +_✓d_✓i_✓r_✓e_✓c_✓t_✓o_✓r_✓y
  35.           Create each given directory and its leading direc-
  36.           tories, if they do not already exist.  Set the owner,
  37.           group and mode as given on the command line or to the
  38.           defaults.  Also gives any leading directories that are
  39.           created those attributes.  This is different from the
  40.           SunOS 4.x _✓i_✓n_✓s_✓t_✓a_✓l_✓l, which gives directories that it
  41.           creates the default attributes.
  42.  
  43.      -_✓g, +_✓g_✓r_✓o_✓u_✓p _✓g_✓r_✓o_✓u_✓p
  44.           Set the group ownership of the installed file or direc-
  45.           tory to the group ID of _✓g_✓r_✓o_✓u_✓p (default is process's
  46.           current group). _✓g_✓r_✓o_✓u_✓p may also be a numeric group ID.
  47.  
  48.      -_✓m, +_✓m_✓o_✓d_✓e _✓m_✓o_✓d_✓e
  49.           Set the permission mode for the installed file or
  50.           directory to _✓m_✓o_✓d_✓e, which is an octal number (default is
  51.           0755).
  52.  
  53.      -_✓o, +_✓o_✓w_✓n_✓e_✓r _✓o_✓w_✓n_✓e_✓r
  54.           If run as root, set the ownership of the installed file
  55.           to the user ID of _✓o_✓w_✓n_✓e_✓r (default is root). _✓o_✓w_✓n_✓e_✓r may
  56.           also be a numeric user ID.
  57.  
  58.      -_✓s, +_✓s_✓t_✓r_✓i_✓p
  59.           Strip the symbol tables from installed programs.
  60.  
  61.  
  62.  
  63. Page 1
  64.  
  65.  
  66.  
  67.